2e4aca33b3f14fd7b0cbe91554ce212ff75da13b,platform/platform-api/src/com/intellij/ide/BrowserUtil.java,BrowserUtil,getDefaultBrowserCommand,#,145

Before Change


      return getOpenBrowserWinCommand(null);
    }
    else if (SystemInfo.isMac) {
      return new SmartList<String>(ExecUtil.getOpenCommandPath());
    }
    else if (SystemInfo.isUnix && SystemInfo.hasXdgOpen()) {
      return new SmartList<String>("xdg-open");

After Change


      return newSmartList(ExecUtil.getWindowsShellName(), "/c", "start", "\"\"");
    }
    else if (SystemInfo.isMac) {
      return newSmartList(ExecUtil.getOpenCommandPath());
    }
    else if (SystemInfo.isUnix && SystemInfo.hasXdgOpen()) {
      return newSmartList("xdg-open");